*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    background: linear-gradient(#c0d860,#cde54e) ;
}
header{
    height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 300px;
}
.logo{
    margin-left: 40px;
}
.container-centro{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo-perfil{
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    justify-content: center;
    width: 20%;
    margin-top: 50px;
    margin-left: 100px;
}
.dado{
    display: flex;
    flex-direction: row-reverse;
    margin-top: 40px;
}
.dados{
    width: 360px;
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    margin-right: 40px;
    margin-bottom: 20px;
}



